Skip to content

Instantly share code, notes, and snippets.

@TrueMyst
TrueMyst / README.md
Last active May 10, 2024 14:43
☕ BeatPrints: Get your user token from MusixMatch

☕ Welcome! This guide will help you to learn how to retrieve your user token from MusixMatch.

You might ask why?

Well, first of all, it's really hard to get an API key from MusixMatch for Developers. I've been told by a lot of people that they struggle with the login page there and never make out of it, so I found a solution for that.

📋 It is recommended to use Firefox browser for this.

Step 1: First of all, go to MusixMatch and click on the login button on the top right of the screen.
Step 2: Select "Community" as your product and sign in using your Google account.
Step 3: Go back to MusixMatch, press F12 on your keyboard, and then press Ctrl + R.

@ahcode0919
ahcode0919 / Simctl.md
Last active May 10, 2024 14:43
Apple Simctl commands

Simctl

An Xcode/CoreSimulator command line utility to control iOS Simulators on MacOS

Command Usage

simctl [--set <path>] [--profiles <path>] <subcommand> ... simctl help [subcommand]

Documented Commands

@shao1555
shao1555 / how_to_setup.md
Last active May 10, 2024 14:43
Mac setup notes
@rcarver
rcarver / Typekit-Font-Events.md
Created May 14, 2010 22:02
Typekit Font Events

Typekit Font Events

UPDATE: Typekit Font Events have been opensourced as WebFont Loader. Typekit's available events will be updated soon with full support for the WebFont Loader API.


Web fonts may be the best thing to happen to web design in years, but that doesn't mean there aren't some tricky issues to overcome. One of the most annoying things is dealing with what's become known as the FOUT or 'Flash of

macOS Sonoma PreviewmacOS Sonoma Preview
Come for the power.
Stay for the fun.
With macOS Sonoma, work and play on your Mac are even more powerful. Elevate your presence on video calls. Access information in all-new ways. Boost gaming performance. And discover even more ways to personalize your Mac.
Available 9.26
Screen Savers
Stunning new screen savers
New slow-motion screen savers of breathtaking locations from around the world look beautiful on your large Mac display. When you log in, they seamlessly become your desktop wallpaper.
@lukas-h
lukas-h / license-badges.md
Last active May 10, 2024 14:42
Markdown License Badges for your Project

Markdown License badges

Collection of License badges for your Project's README file.
This list includes the most common open source and open data licenses.
Easily copy and paste the code under the badges into your Markdown files.

Notes

  • The badges do not fully replace the license informations for your projects, they are only emblems for the README, that the user can see the License at first glance.

Translations: (No guarantee that the translations are up-to-date)

@yeonhoyoon
yeonhoyoon / multipart.js
Last active May 10, 2024 14:41
Send multipart request from javascript
if (XMLHttpRequest.prototype.sendAsBinary === undefined) {
XMLHttpRequest.prototype.sendAsBinary = function(string) {
var bytes = Array.prototype.map.call(string, function(c) {
return c.charCodeAt(0) & 0xff;
});
this.send(new Uint8Array(bytes));
};
}
function sendMultiPartReqeust(filename, mimeType, imageData, message) {
@RubyLichtenstein
RubyLichtenstein / PainlessFragmentArguments.md
Last active May 10, 2024 14:41
Painless android fragments with Kotlin

Starting new fragments with Kotlin is easy

Example

val user = User(id = "id", name = "Ruby")
val userFragment: UserFragment = newFragment<User, UserFragment>(user)

How this magic works

@atomkirk
atomkirk / download-zoom-recording.md
Last active May 10, 2024 14:41
Force download a zoom recording
  1. Open dev tools
  2. Search for the <video… tag.
  3. Copy the source URL
  4. Right click on the body tag and click Edit as HTML
  5. Add an a link with the src right inside the body tag like:
<body>
  <a href="url-you-copied">download</a>
  ...
@Pulimet
Pulimet / AdbCommands
Last active May 10, 2024 14:40
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader